+Mon Oct 6 14:18:47 2003 Jonathan Blandford <jrb@redhat.com>
+
+ * gtk/gtkexpander.c (gtk_expander_animation_timeout): only show
+ the child if we have one.
+
+ (gtk_expander_button_release): use
+ gtk_widget_activate instead.
+
Mon Oct 6 21:05:46 2003 Matthias Clasen <maclas@gmx.de>
* gtk/gtktable.c (gtk_table_class_init): Start the blurb for
+Mon Oct 6 14:18:47 2003 Jonathan Blandford <jrb@redhat.com>
+
+ * gtk/gtkexpander.c (gtk_expander_animation_timeout): only show
+ the child if we have one.
+
+ (gtk_expander_button_release): use
+ gtk_widget_activate instead.
+
Mon Oct 6 21:05:46 2003 Matthias Clasen <maclas@gmx.de>
* gtk/gtktable.c (gtk_table_class_init): Start the blurb for
+Mon Oct 6 14:18:47 2003 Jonathan Blandford <jrb@redhat.com>
+
+ * gtk/gtkexpander.c (gtk_expander_animation_timeout): only show
+ the child if we have one.
+
+ (gtk_expander_button_release): use
+ gtk_widget_activate instead.
+
Mon Oct 6 21:05:46 2003 Matthias Clasen <maclas@gmx.de>
* gtk/gtktable.c (gtk_table_class_init): Start the blurb for
+Mon Oct 6 14:18:47 2003 Jonathan Blandford <jrb@redhat.com>
+
+ * gtk/gtkexpander.c (gtk_expander_animation_timeout): only show
+ the child if we have one.
+
+ (gtk_expander_button_release): use
+ gtk_widget_activate instead.
+
Mon Oct 6 21:05:46 2003 Matthias Clasen <maclas@gmx.de>
* gtk/gtktable.c (gtk_table_class_init): Start the blurb for
+Mon Oct 6 14:18:47 2003 Jonathan Blandford <jrb@redhat.com>
+
+ * gtk/gtkexpander.c (gtk_expander_animation_timeout): only show
+ the child if we have one.
+
+ (gtk_expander_button_release): use
+ gtk_widget_activate instead.
+
Mon Oct 6 21:05:46 2003 Matthias Clasen <maclas@gmx.de>
* gtk/gtktable.c (gtk_table_class_init): Start the blurb for
if (event->button == 1 && expander->priv->button_down)
{
- gtk_expander_activate (expander);
+ gtk_widget_activate (widget);
expander->priv->button_down = FALSE;
return TRUE;
}
if (finish)
{
priv->animation_timeout = 0;
- gtk_widget_set_child_visible (GTK_BIN (expander)->child, priv->expanded);
+ if (GTK_BIN (expander)->child)
+ gtk_widget_set_child_visible (GTK_BIN (expander)->child, priv->expanded);
gtk_widget_queue_resize (GTK_WIDGET (expander));
}